type net/http.http2ErrCode
42 uses
net/http (current package)
h2_bundle.go#L1169: type http2ErrCode uint32
h2_bundle.go#L1172: http2ErrCodeNo http2ErrCode = 0x0
h2_bundle.go#L1173: http2ErrCodeProtocol http2ErrCode = 0x1
h2_bundle.go#L1174: http2ErrCodeInternal http2ErrCode = 0x2
h2_bundle.go#L1175: http2ErrCodeFlowControl http2ErrCode = 0x3
h2_bundle.go#L1176: http2ErrCodeSettingsTimeout http2ErrCode = 0x4
h2_bundle.go#L1177: http2ErrCodeStreamClosed http2ErrCode = 0x5
h2_bundle.go#L1178: http2ErrCodeFrameSize http2ErrCode = 0x6
h2_bundle.go#L1179: http2ErrCodeRefusedStream http2ErrCode = 0x7
h2_bundle.go#L1180: http2ErrCodeCancel http2ErrCode = 0x8
h2_bundle.go#L1181: http2ErrCodeCompression http2ErrCode = 0x9
h2_bundle.go#L1182: http2ErrCodeConnect http2ErrCode = 0xa
h2_bundle.go#L1183: http2ErrCodeEnhanceYourCalm http2ErrCode = 0xb
h2_bundle.go#L1184: http2ErrCodeInadequateSecurity http2ErrCode = 0xc
h2_bundle.go#L1185: http2ErrCodeHTTP11Required http2ErrCode = 0xd
h2_bundle.go#L1188: var http2errCodeName = map[http2ErrCode]string{
h2_bundle.go#L1205: func (e http2ErrCode) String() string {
h2_bundle.go#L1212: func (e http2ErrCode) stringToken() string {
h2_bundle.go#L1221: type http2ConnectionError http2ErrCode
h2_bundle.go#L1224: return fmt.Sprintf("connection error: %s", http2ErrCode(e))
h2_bundle.go#L1231: Code http2ErrCode
h2_bundle.go#L1240: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
h2_bundle.go#L1268: Code http2ErrCode // the ConnectionError error code
h2_bundle.go#L1864: func (fr *http2Framer) connError(code http2ErrCode, reason string) error {
h2_bundle.go#L2209: ErrCode http2ErrCode
h2_bundle.go#L2234: ErrCode: http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
h2_bundle.go#L2239: func (f *http2Framer) WriteGoAway(maxStreamID uint32, code http2ErrCode, debugData []byte) error {
h2_bundle.go#L2531: ErrCode http2ErrCode
h2_bundle.go#L2543: return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
h2_bundle.go#L2550: func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
h2_bundle.go#L4197: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
h2_bundle.go#L4251: goAwayCode http2ErrCode
h2_bundle.go#L5053: func (sc *http2serverConn) goAway(code http2ErrCode) {
h2_bundle.go#L5120: sc.goAway(http2ErrCode(ev))
h2_bundle.go#L6734: var code http2ErrCode
h2_bundle.go#L6738: code = http2ErrCode(e)
h2_bundle.go#L6741: code = http2ErrCode(e.Code)
h2_bundle.go#L8714: cc.fr.WriteGoAway(0, http2ErrCode(ce), nil)
h2_bundle.go#L8723: ErrCode http2ErrCode
h2_bundle.go#L8786: errCode := http2ErrCode(ce)
h2_bundle.go#L9564: func (cc *http2ClientConn) writeStreamReset(streamID uint32, code http2ErrCode, err error) {
h2_bundle.go#L9815: code http2ErrCode